home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / prog / atari / c / stik_dev / forecast / main.h < prev    next >
C/C++ Source or Header  |  1996-01-09  |  304b  |  19 lines

  1. #ifndef    _MAIN_H
  2. #define    _MAIN_H
  3.  
  4.     #define    TRUE -1
  5.     #define    FALSE 0
  6.  
  7.     #define    WINTYPE        (NAME | MOVE | CLOSE | SMALLER | INFO | FULLER)
  8.  
  9.     #define MAX_WID        work_out[0]+1
  10.     #define MAX_HGT        work_out[1]+1
  11.  
  12.     typedef struct {
  13.         short    handle;
  14.         GRECT    w_rect;
  15.         GRECT    b_rect;
  16.         } WINDOW;
  17.  
  18. #endif
  19.